.floating-sccards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 15;
  pointer-events: auto;
}

.sccard {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.9);
  transition: transform 0.3s ease;
  animation: zoomIn 1s ease forwards, breathe 4s ease-in-out infinite;
  pointer-events: auto;
  z-index: 20;
}

.sccard img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.sccard1 { --x: -133px; --y: -337px; }
.sccard2 { --x: 18px; --y: -293px; }
.sccard5 { --x: -135px; --y: -198px; }
.sccard8 { --x: 226px; --y: -177px; }
.sccard10 { --x: 93px; --y: -341px; }
.sccard14 { --x: 100px; --y: -253px; }
.sccard15 { --x: 183px; --y: -265px; }
.sccard16 { --x: -20px; --y: -368px; }

.sccard .img-100 { height: 100px; width: 100px; }
.sccard .img-60x60 { height: 60px; width: 60px; }
.sccard .img-130x90 { height: 130px; width: 90px; }
.sccard .img-130 { height: 130px; width: 130px; }
.sccard .img-60x100 { height: 60px; width: 80px; }

@keyframes zoomIn {
  0% {
    transform: scale(0.4) translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
    opacity: 0;
  }
  100% {
    transform: scale(0.9) translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
    opacity: 1;
  }
}

@keyframes breathe {
  0%, 100% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.9);
  }
  50% {
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1.05);
  }
}

.main-wrapper .animation-list {
  max-height: 95vh;
  overflow-y: auto;
  padding-right: 10px;
  width: 500px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 80px;
}

.main-wrapper .animation-list::-webkit-scrollbar {
  display: none;
}

.main-wrapper .animation-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.2s ease, transform 1.2s ease;
  margin-bottom: 35px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  line-height: 1.5em;
  color: #4A6078;
  position: relative;
  padding-left: 40px;
  margin-left: 10px;
}

.main-wrapper .animation-item:last-child {
  margin-bottom: 80px;
}

.main-wrapper .animation-item::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 21px;
  width: 10px;
  height: 10px;
  background: #347ad5;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.6);
  animation: pulse 2.8s infinite;
}

.main-wrapper .animation-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
  color: #1a2e45;
  font-weight: 700;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 74, 173, 0.6);
  }
  70% {
    transform: scale(1.2);
    box-shadow: 0 0 0 10px rgba(0, 74, 173, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 74, 173, 0);
  }
}

.main-wrapper .animation-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-wrapper .dotted-separator {
  margin: 10px -10px;
  height: calc(100vh - 40px);
  min-height: 400px;
  border-left: 3px dotted #3a82f7;
  opacity: 0.6;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scaleY(0.8); }
  to { opacity: 0.6; transform: scaleY(1); }
}

h1.page-heading {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(to right, #347ad5, #1a2e45);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  text-align: center;
}

.main-wrapper {
  display: flex;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.main-wrapper .container {
  position: relative;
  width: 460px;
  height: 460px;
  margin-left: 30px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.main-wrapper .center-image {
  width: 200px;
  height: 300px;
  object-fit: contain;
  z-index: 10;
}

@media (max-width: 1199px) {
  .main-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 20px;
  }

  .main-wrapper .container {
    margin-left: 0;
    left: auto !important;
    top: auto !important;
    width: 100%;
    height: auto;
    padding: 20px 0;
  }

  .main-wrapper .center-image {
    width: 200px;
    height: 300px;
    padding-top: 50px;
  }

  .floating-sccards .sccard {
    width: 40px;
    height: 40px;
  }

  .floating-sccards .sccard img {
    width: 40px;
    height: 40px;
  }

  .sccard1 { --x: 0px; --y: -151px; }
  .sccard2 { --x: 93px; --y: -142px; }
  .sccard5 { --x: 140px; --y: -53px; }
  .sccard8 { --x: 140px; --y: -105px; }
  .sccard10 { --x: -83px; --y: -150px; }
  .sccard14 { --x: 55px; --y: -107px; }
  .sccard15 { --x: -60px; --y: -103px; }
  .sccard16 { --x: 12px; --y: -83px; }

  .main-wrapper .dotted-separator {
    display: none;
  }

  .main-wrapper .animation-list {
    width: 100%;
    max-width: 100%;
    padding: 0 10px 60px;
    max-height: none;
  }

  h1.page-heading {
    font-size: 24px;
    padding: 0 10px;
  }

  .main-wrapper .animation-item {
    margin-left: 0;
    padding-left: 35px;
    font-size: 14px;
  }

  .main-wrapper .animation-item strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .main-wrapper .center-image {
    width: 150px;
  }

  .floating-sccards .sccard,
  .floating-sccards .sccard img {
    width: 32px;
    height: 32px;
  }
}
